home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex81.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  170 b   |  13 lines

  1. Program example81;
  2.  
  3. { Program to demonstrate the HexStr function }
  4.  
  5. Const Value = 45678;
  6.  
  7. Var I : longint;
  8.  
  9. begin
  10.   For I:=1 to 10 do
  11.     Writeln (HexStr(Value,I));
  12. end.
  13.